home *** CD-ROM | disk | FTP | other *** search
- /***********************************************************
- Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
- The Netherlands.
-
- All Rights Reserved
-
- Permission to use, copy, modify, and distribute this software and its
- documentation for any purpose and without fee is hereby granted,
- provided that the above copyright notice appear in all copies and that
- both that copyright notice and this permission notice appear in
- supporting documentation, and that the names of Stichting Mathematisch
- Centrum or CWI or Corporation for National Research Initiatives or
- CNRI not be used in advertising or publicity pertaining to
- distribution of the software without specific, written prior
- permission.
-
- While CWI is the initial source for this software, a modified version
- is made available by the Corporation for National Research Initiatives
- (CNRI) at the Internet address ftp://ftp.python.org.
-
- STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
- REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
- CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
- DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-
- ******************************************************************/
-
- /* Map C struct members to Python object attributes */
-
- #include "allobjects.h"
-
- #include "structmember.h"
-
- #include "protos/structmember_protos.h"
-
- static object *
- listmembers(mlist)
- struct memberlist *mlist;
- {
- int i, n;
- object *v;
- for (n = 0; mlist[n].name != NULL; n++)
- ;
- v = newlistobject(n);
- if (v != NULL) {
- for (i = 0; i < n; i++)
- setlistitem(v, i, newstringobject(mlist[i].name));
- if (err_occurred()) {
- DECREF(v);
- v = NULL;
- }
- else {
- sortlist(v);
- }
- }
- return v;
- }
-
- object *
- getmember(addr, mlist, name)
- char *addr;
- struct memberlist *mlist;
- char *name;
- {
- struct memberlist *l;
-
- if (strcmp(name, "__members__") == 0)
- return listmembers(mlist);
- for (l = mlist; l->name != NULL; l++) {
- if (strcmp(l->name, name) == 0) {
- object *v;
- addr += l->offset;
- switch (l->type) {
- case T_BYTE:
- v = newintobject((long)
- (((*(char*)addr & 0xff)
- ^ 0x80) - 0x80));
- break;
- case T_UBYTE:
- v = newintobject((long) *(char*)addr & 0xff);
- break;
- case T_SHORT:
- v = newintobject((long) *(short*)addr);
- break;
- case T_USHORT:
- v = newintobject((long)
- *(unsigned short*)addr);
- break;
- case T_INT:
- v = newintobject((long) *(int*)addr);
- break;
- case T_UINT:
- v = newintobject((long) *(unsigned int*)addr);
- break;
- case T_LONG:
- v = newintobject(*(long*)addr);
- break;
- case T_ULONG:
- v = dnewlongobject((double)
- *(unsigned long*)addr);
- break;
- case T_FLOAT:
- v = newfloatobject((double)*(float*)addr);
- break;
- case T_DOUBLE:
- v = newfloatobject(*(double*)addr);
- break;
- case T_STRING:
- if (*(char**)addr == NULL) {
- INCREF(None);
- v = None;
- }
- else
- v = newstringobject(*(char**)addr);
- break;
- case T_STRING_INPLACE:
- v = newstringobject((char*)addr);
- break;
- #ifdef macintosh
- case T_PSTRING:
- if (*(char**)addr == NULL) {
- INCREF(None);
- v = None;
- }
- else
- v = newsizedstringobject((*(char**)addr)+1,
- **(unsigned char**)addr);
- break;
- case T_PSTRING_INPLACE:
- v = newsizedstringobject(((char*)addr)+1,
- *(unsigned char*)addr);
- break;
- #endif /* macintosh */
- case T_CHAR:
- v = newsizedstringobject((char*)addr, 1);
- break;
- case T_OBJECT:
- v = *(object **)addr;
- if (v == NULL)
- v = None;
- INCREF(v);
- break;
- default:
- err_setstr(SystemError, "bad memberlist type");
- v = NULL;
- }
- return v;
- }
- }
-
- err_setstr(AttributeError, name);
- return NULL;
- }
-
- int
- setmember(addr, mlist, name, v)
- char *addr;
- struct memberlist *mlist;
- char *name;
- object *v;
- {
- struct memberlist *l;
-
- for (l = mlist; l->name != NULL; l++) {
- if (strcmp(l->name, name) == 0) {
- #ifdef macintosh
- if (l->readonly || l->type == T_STRING || l->type == T_PSTRING) {
- #else
- if (l->readonly || l->type == T_STRING ) {
- #endif /* macintosh */
- err_setstr(TypeError, "readonly attribute");
- return -1;
- }
- if (v == NULL && l->type != T_OBJECT) {
- err_setstr(TypeError,
- "can't delete numeric/char attribute");
- return -1;
- }
- addr += l->offset;
- switch (l->type) {
- case T_BYTE:
- case T_UBYTE:
- if (!is_intobject(v)) {
- err_badarg();
- return -1;
- }
- *(char*)addr = getintvalue(v);
- break;
- case T_SHORT:
- case T_USHORT:
- if (!is_intobject(v)) {
- err_badarg();
- return -1;
- }
- *(short*)addr = getintvalue(v);
- break;
- case T_UINT:
- case T_INT:
- if (!is_intobject(v)) {
- err_badarg();
- return -1;
- }
- *(int*)addr = getintvalue(v);
- break;
- case T_LONG:
- if (!is_intobject(v)) {
- err_badarg();
- return -1;
- }
- *(long*)addr = getintvalue(v);
- break;
- case T_ULONG:
- if (is_intobject(v))
- *(long*)addr = getintvalue(v);
- else if (is_longobject(v))
- *(long*)addr = getlongvalue(v);
- else {
- err_badarg();
- return -1;
- }
- break;
- case T_FLOAT:
- if (is_intobject(v))
- *(float*)addr = getintvalue(v);
- else if (is_floatobject(v))
- *(float*)addr = getfloatvalue(v);
- else {
- err_badarg();
- return -1;
- }
- break;
- case T_DOUBLE:
- if (is_intobject(v))
- *(double*)addr = getintvalue(v);
- else if (is_floatobject(v))
- *(double*)addr = getfloatvalue(v);
- else {
- err_badarg();
- return -1;
- }
- break;
- case T_OBJECT:
- XDECREF(*(object **)addr);
- XINCREF(v);
- *(object **)addr = v;
- break;
- case T_CHAR:
- if (is_stringobject(v) &&
- getstringsize(v) == 1) {
- *(char*)addr =
- getstringvalue(v)[0];
- }
- else {
- err_badarg();
- return -1;
- }
- default:
- err_setstr(SystemError, "bad memberlist type");
- return -1;
- }
- return 0;
- }
- }
-
- err_setstr(AttributeError, name);
- return -1;
- }
-